|
|||||||||||||||||||
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
DeadlineExpression.java | - | - | - | - |
|
1 |
/*
|
|
2 |
* $Id: DeadlineExpression.java,v 1.1 2004/12/15 14:18:14 patforna Exp $
|
|
3 |
*
|
|
4 |
* Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
|
|
5 |
* Berne University of Applied Sciences
|
|
6 |
* School of Engineering and Information Technology
|
|
7 |
* All rights reserved.
|
|
8 |
*/
|
|
9 |
package bexee.model.expression;
|
|
10 |
|
|
11 |
/**
|
|
12 |
* Representation of a deadline expression.
|
|
13 |
*
|
|
14 |
* @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:14 $
|
|
15 |
* @author Pawel Kowalski
|
|
16 |
*/
|
|
17 |
public interface DeadlineExpression extends Expression { |
|
18 |
|
|
19 |
/**
|
|
20 |
* Set the deadline expression litteral.
|
|
21 |
*
|
|
22 |
* @param deadlineExpression
|
|
23 |
* litteral
|
|
24 |
*/
|
|
25 |
public void setDeadlineExpression(String deadlineExpression); |
|
26 |
|
|
27 |
/**
|
|
28 |
* Get the deadline expression litteral.
|
|
29 |
*
|
|
30 |
* @return litteral
|
|
31 |
*/
|
|
32 |
public String getDeadlineExpression();
|
|
33 |
|
|
34 |
} |
|